Distinguish and sort transitive packages in the Project View#1606
Open
Copilot wants to merge 5 commits into
Open
Distinguish and sort transitive packages in the Project View#1606Copilot wants to merge 5 commits into
Copilot wants to merge 5 commits into
Conversation
Copilot
AI
changed the title
[WIP] Fix transitive packages not showing under project view
Show direct/transitive package distinction in Project View
Jun 23, 2026
Copilot
AI
changed the title
Show direct/transitive package distinction in Project View
Distinguish and sort transitive packages in the Project View
Jun 23, 2026
edvilme
approved these changes
Jun 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Project View rendered direct and transitive packages identically, while the Environment View distinguishes them (icon, label, tooltip) and sorts direct-first. This made the two views inconsistent.
Changes
treeViewItems.ts(ProjectPackage) — mirrorPackageTreeItem:list-treeicon for transitive (vspackage),(transitive)description prefix, and the explanatory dependency tooltip. Package-providediconPathstill takes precedence.projectView.ts— sort packages direct-first using the same comparator as the Environment View before mapping to tree items.''when bothversionanddescriptionare absent, avoiding a strayundefinedin the label; applied to both views.ProjectPackagesuite covering direct vs. transitive rendering, icon override, and the empty-description case.Note: the description/tooltip/icon logic is intentionally duplicated across
ProjectPackageandPackageTreeItemto keep the two views in lockstep; a shared helper is a reasonable follow-up if further divergence is a concern.